👀 Reading hidden code
Enter cell code...
@eval
for faster array check
👀 Reading hidden code
👀 Reading hidden code
using BenchmarkTools
1
2
3
👀 Reading hidden code
xs = [1,2,3]
Base case
👀 Reading hidden code
issmall1 (generic function with 1 method)
👀 Reading hidden code
BenchmarkTools.Trial: 10000 samples with 997 evaluations per sample.
Range (min … max): 20.037 ns … 46.637 ns ┊ GC (min … max): 0.00% … 0.00%
Time (median): 20.067 ns ┊ GC (median): 0.00%
Time (mean ± σ): 20.345 ns ± 1.588 ns ┊ GC (mean ± σ): 0.00% ± 0.00%
█ ▁
█▃▄▁▄▇▄▃▄▁▄▃▄▄▅▄▅▅▄▁▃▃▄▁▁▃▃▃▃▄▃▁▃▁▁▄▁▄▃▄▃▄▃▄▁▄▅▃▃▅▆▇▇▇▆▆▆▆▅ █
20 ns Histogram: log(frequency) by time 28.4 ns <
Memory estimate: 0 bytes, allocs estimate: 0.
👀 Reading hidden code
BenchmarkTools.Trial: 10000 samples with 997 evaluations per sample.
Range (min … max): 18.811 ns … 43.251 ns ┊ GC (min … max): 0.00% … 0.00%
Time (median): 19.756 ns ┊ GC (median): 0.00%
Time (mean ± σ): 19.878 ns ± 1.656 ns ┊ GC (mean ± σ): 0.00% ± 0.00%
▆ █ ▁
█▁▁▁▃▅█▄▃▄▅▇▄▃▄▄▁▃▃▅▅▅▄▄▄▃▅▃▄▃▄▃▁▄▇▁▁▃▄▄▄▄▄▄▅▅▄▅▆▆▅▅▆██▇▇▆▅ █
18.8 ns Histogram: log(frequency) by time 27.7 ns <
Memory estimate: 0 bytes, allocs estimate: 0.
@benchmark issmall1(2)
👀 Reading hidden code
With @eval
👀 Reading hidden code
issmall2 (generic function with 1 method)
@eval function issmall2(x)
$(or_sequence(:(x == $v) for v in xs))
end
👀 Reading hidden code
UndefVarError: issmall2 not defined
Here is what happened, the most recent locations are first:
- var"##core#323"
() from execution.jl:598 - var"##sample#324"
(::Tuple{}, __params::BenchmarkTools.Parameters) from execution.jl:607 - _lineartrial
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters; maxevals::Int64, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}) from execution.jl:186 - _lineartrial
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters) from execution.jl:182 - #invokelatest#2from essentials.jl:716
- invokelatestfrom essentials.jl:714
- #lineartrial#46from execution.jl:51
- lineartrialfrom execution.jl:51
- tune!
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters; progressid::Nothing, nleaves::Float64, ndone::Float64, verbose::Bool, pad::String, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}) from execution.jl:299 - tune!from execution.jl:298
- macro expansionfrom This cell: line 461
- Show more...
@benchmark issmall2(2)
👀 Reading hidden code
UndefVarError: issmall2 not defined
Here is what happened, the most recent locations are first:
- var"##core#331"
() from execution.jl:598 - var"##sample#332"
(::Tuple{}, __params::BenchmarkTools.Parameters) from execution.jl:607 - _lineartrial
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters; maxevals::Int64, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}) from execution.jl:186 - _lineartrial
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters) from execution.jl:182 - #invokelatest#2from essentials.jl:716
- invokelatestfrom essentials.jl:714
- #lineartrial#46from execution.jl:51
- lineartrialfrom execution.jl:51
- tune!
(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters; progressid::Nothing, nleaves::Float64, ndone::Float64, verbose::Bool, pad::String, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}) from execution.jl:299 - tune!from execution.jl:298
- macro expansionfrom This cell: line 461
- Show more...
computer bad, you GREAT!
@benchmark issmall2(5)
👀 Reading hidden code
or_sequence (generic function with 1 method)
or_sequence(exprs) = foldl(Iterators.reverse(exprs)) do e, next
:($(next) || $(e))
end
👀 Reading hidden code
:(1 || (2 || 3))
or_sequence(xs)
👀 Reading hidden code